【例子介绍】c# SQLServer在线考试系统
为了保障整个系统的安全性,在线考试系统实现了分类验证的登录模块,通过此模块,可以对不同身份的登录用户进行验证,确保了不同身份的用户操作系统。在抽取试题上,系统使用随机抽取试题的方式,体现了考试的客观与...
【相关图片】
【源码结构】
.
├── ExamOnLine
│ ├── App_Code
│ │ ├── BaseClass.cs
│ │ ├── MessageBox.cs
│ │ └── projClass.cs
│ ├── App_Data
│ │ ├── db_ExamOnline.ldf
│ │ └── db_ExamOnline.mdf
│ ├── Image
│ │ ├── back_01.gif
│ │ ├── back_03.gif
│ │ ├── back_13.gif
│ │ ├── bg.gif
│ │ ├── emame_03.gif
│ │ ├── exame_02.gif
│ │ ├── exame_05.gif
│ │ ├── kemu_03.gif
│ │ ├── login.gif
│ │ └── rule_03.gif
│ ├── Image.aspx
│ ├── Image.aspx.cs
│ ├── Login.aspx
│ ├── Login.aspx.cs
│ ├── Mystyle.css
│ ├── UserControls
│ │ ├── Fooder.ascx
│ │ ├── Fooder.ascx.cs
│ │ ├── Header1.ascx
│ │ ├── Header1.ascx.cs
│ │ ├── Header2.ascx
│ │ └── Header2.ascx.cs
│ ├── Web.Config
│ ├── admin
│ │ ├── AddExamination.aspx
│ │ ├── AddExamination.aspx.cs
│ │ ├── AddStudentInfo.aspx
│ │ ├── AddStudentInfo.aspx.cs
│ │ ├── AddTeacherInfo.aspx
│ │ ├── AddTeacherInfo.aspx.cs
│ │ ├── AdminChangePwd.aspx
│ │ ├── AdminChangePwd.aspx.cs
│ │ ├── AdminManage.aspx
│ │ ├── AdminManage.aspx.cs
│ │ ├── ChangeStudentInfo.aspx
│ │ ├── ChangeStudentInfo.aspx.cs
│ │ ├── ExaminationDetail.aspx
│ │ ├── ExaminationDetail.aspx.cs
│ │ ├── ExaminationInfo.aspx
│ │ ├── ExaminationInfo.aspx.cs
│ │ ├── ExaminationResult.aspx
│ │ ├── ExaminationResult.aspx.cs
│ │ ├── Img
│ │ │ ├── back_08.gif
│ │ │ ├── back_11.gif
│ │ │ └── back_left_06.gif
│ │ ├── Logout.aspx
│ │ ├── Logout.aspx.cs
│ │ ├── StudentInfo.aspx
│ │ ├── StudentInfo.aspx.cs
│ │ ├── Subject.aspx
│ │ ├── Subject.aspx.cs
│ │ ├── TeacherInfo.aspx
│ │ ├── TeacherInfo.aspx.cs
│ │ ├── TeacherXXinfo.aspx
│ │ ├── TeacherXXinfo.aspx.cs
│ │ └── left.htm
│ ├── student
│ │ ├── StartExam.aspx
│ │ ├── StartExam.aspx.cs
│ │ ├── result.aspx
│ │ ├── result.aspx.cs
│ │ ├── studentexam.aspx
│ │ └── studentexam.aspx.cs
│ └── teacher
│ ├── Img
│ │ ├── back_08.gif
│ │ ├── back_11.gif
│ │ └── back_left_06.gif
│ ├── TAddExamination.aspx
│ ├── TAddExamination.aspx.cs
│ ├── TExaminationDetail.aspx
│ ├── TExaminationDetail.aspx.cs
│ ├── TExaminationInfo.aspx
│ ├── TExaminationInfo.aspx.cs
│ ├── TExaminationResult.aspx
│ ├── TExaminationResult.aspx.cs
│ ├── TLogout.aspx
│ ├── TLogout.aspx.cs
│ ├── TeacherChangePwd.aspx
│ ├── TeacherChangePwd.aspx.cs
│ ├── TeacherManage.aspx
│ ├── TeacherManage.aspx.cs
│ └── Tleft.htm
├── TCP.suo
├── c# SQLServer在线考试系统_ExamOnLine.rar
└── readme.doc
10 directories, 86 files
评论